/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #f7a209; /* Vibrant orange */
  --dark: #121212;    /* Deep black */
  --light: #FFFFFF;   /* Pure white */
  --accent: #FFA726;  /* Lighter orange */
  --nav-bg: #f5f5f5;  /* Light grey navigation background */
}

/* Header Styles */
header {
  background-color: var(--dark);
  color: var(--light);
  padding-top: 1rem;
  padding-bottom: 10px;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  padding: 1rem 0;
}

.logo span {
  color: var(--light);
}

/* Navigation Container - Light Grey Background */
.nav-container {
  background-color: var(--nav-bg);
  padding: 1.5rem 5%;
  width: 100%;
}

nav {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--primary); /* Orange text always visible */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--dark); /* Dark text on hover */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--dark);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Rest of your existing styles... */

/* Hero Section - Adjust margin-top to account for new nav */
.hero {
  margin-top: 0; /* Removed any extra margin */
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Remove the header::before completely - no more white diagonal */

/* ... rest of your existing CSS remains the same ... */

.hero-content {
  width: 50%;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 80%;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--light);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary);
}

/* Image Box with Diagonal Cut */
.image-box {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  background-color: var(--dark);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Unique Feature Cards */
.features {
  padding: 5rem 5%;
  background-color: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--primary);
  transition: height 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Footer with Orange Accent */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 5% 2rem;
  position: relative;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-column p, .footer-column a {
  color: #ccc;
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

/* Orange Accent Bar */
.accent-bar {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  position: absolute;
  top: 0;
  left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
      height: auto;
      padding: 5rem 5%;
      flex-direction: column;
      text-align: center;
  }

  .hero-content {
      width: 100%;
      margin-bottom: 3rem;
  }

  .hero p {
      max-width: 100%;
  }

  .image-box {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      width: 100%;
      height: 400px;
      clip-path: none;
      margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
      flex-direction: column;
      gap: 1rem;
  }

  .nav-links {
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
  }

  .hero h1 {
      font-size: 2.5rem;
  }
}
/* PROJECTS PAGE STYLES */
.projects-hero {
  background-color: var(--dark);
  color: var(--light);
  padding: 6rem 5% 4rem;
  text-align: center;
  position: relative;
}

.projects-hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--light);
  transform: skewY(-3deg);
  z-index: 1;
}

.projects-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.projects-hero h1 span {
  color: var(--primary);
}

.projects-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin: 0 auto;
}

.project-card {
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  max-width: 800px;
  width: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-image {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-info {
  padding: 2rem;
  border-top: 4px solid var(--primary);
  text-align: left;
}

.project-info h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.project-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.back-link-container {
  text-align: center;
  margin-top: 4rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .projects-hero h1 {
      font-size: 2.2rem;
  }
  
  .project-image {
      height: 250px;
  }
  
  .project-info {
      padding: 1.5rem;
  }
}
/* ABOUT PAGE STYLES */
.about-hero {
  background-color: var(--dark);
  color: var(--light);
  padding: 6rem 5% 4rem;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--light);
  transform: skewY(-3deg);
  z-index: 1;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.about-hero h1 span {
  color: var(--primary);
}

.about-content {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-text p {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.value-card p {
  color: #555;
  line-height: 1.7;
}

.team-section {
  text-align: center;
  margin: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.team-member p.position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-section, 
  .about-section.reverse {
      flex-direction: column;
      gap: 2rem;
  }
  
  .about-hero h1 {
      font-size: 2.2rem;
  }
  
  .team-grid {
      grid-template-columns: 1fr;
  }
}
/* =============== SERVICES PAGE STYLES =============== */
.services-hero {
  background-color: var(--dark);
  color: var(--light);
  padding: 6rem 5% 4rem;
  text-align: center;
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--light);
  transform: skewY(-3deg);
  z-index: 1;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.services-hero h1 span {
  color: var(--primary);
}

.services-content {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border-top: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(247, 162, 9, 0.1);
  font-size: 3.5rem;
  color: var(--primary);
}

.service-info {
  padding: 2rem;
}

.service-info h2 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-top: 1.5rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--dark);
}

.service-features li::before {
  content: '•';
  color: var(--primary);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

@media (max-width: 768px) {
  .services-hero h1 {
      font-size: 2.2rem;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
  }
}
/* =============== CONTACT PAGE STYLES =============== */
/* =============== CONTACT FORM PAGE STYLES =============== */
.contact-form-hero {
  background-color: var(--dark);
  color: var(--light);
  padding: 6rem 5% 4rem;
  text-align: center;
  position: relative;
}

.contact-form-hero::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--light);
  transform: skewY(-3deg);
  z-index: 1;
}

.contact-form-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.contact-form-hero h1 span {
  color: var(--primary);
}

.contact-form-container {
  max-width: 800px;
  margin: 5rem auto;
  padding: 0 5%;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  text-align: center;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-control {
  min-height: 200px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
  grid-column: span 2;
}

.submit-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .contact-form-hero h1 {
      font-size: 2.2rem;
  }
  
  .contact-form-grid {
      grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
      grid-column: span 1;
  }
  
  .contact-form-wrapper {
      padding: 2rem;
  }
}
.image-buttons {
  margin-top: 10px;
  text-align: center;
}

.image-buttons button {
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding: 8px 16px;
  margin: 5px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.image-buttons button:hover {
  background-color: #cc8400;
}
